/* =========================
   SECCION SOBRE BJXMODA
========================= */

.container-principal{

    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 25px;

    padding: 40px;

    margin: 60px auto;

    width: 85%;

    background-color: #f5f5f5;

    border-radius: 30px;

    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* HOVER CONTENEDOR */

.container-principal:hover{

    box-shadow:
    0px 15px 40px rgba(0,0,0,0.08);

    transform: translateY(-5px);
}

/* =========================
   IMAGEN
========================= */

.acerca-img{

    position: relative;

    width: fit-content;

    overflow: hidden;

    border-radius: 25px;

    flex-shrink: 0;
}

/* IMAGEN */

.acerca-img img{

    width: 400px;

    height: 450px;

    object-fit: cover;

    border-radius: 25px;

    display: block;

    transition: transform 0.5s ease;
}

/* ZOOM */

.acerca-img:hover img{
    transform: scale(1.05);
}

/* TEXTO SOBRE IMAGEN */

.acerca-img h3{

    position: absolute;

    bottom: 20px;

    left: 20px;

    background-color: white;

    padding: 12px 20px;

    border-radius: 15px;

    font-size: 24px;

    font-weight: 500;

    color: black;

    box-shadow:
    0px 5px 18px rgba(0,0,0,0.08);
}

/* =========================
   CONTENIDO
========================= */

.acerca-contenido{

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 25px;

    max-width: 550px;
}

/* TITULO */

.acerca-contenido h2{

    font-size: 36px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: -1px;

    color: #111;
}

/* TEXTO */

.acerca-contenido p{

    font-size: 18px;

    line-height: 1.8;

    color: #555;
}

/* TEXTO DESTACADO */

.acerca-contenido span{

    font-weight: bold;

    color: black;
}

/* BOTON */

.acerca-contenido a{

    width: fit-content;

    padding: 15px 30px;

    background-color: black;

    color: white;

    border-radius: 50px;

    transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 0.3px;
}

/* HOVER BOTON */

.acerca-contenido a:hover{

    opacity: 0.9;

    transform: translateY(-3px);

    background: #1a1a1a;
}

/* =========================
   TABLET
========================= */

@media(max-width: 1024px){

    .container-principal{

        width: 92%;

        padding: 35px;

        gap: 30px;
    }

    .acerca-img img{

        width: 340px;

        height: 400px;
    }

    .acerca-contenido h2{
        font-size: 30px;
    }

    .acerca-contenido p{
        font-size: 16px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px){

    .container-principal{

        flex-direction: column;

        align-items: center;

        width: 92%;

        padding: 25px;

        gap: 30px;

        margin: 40px auto;
    }

    /* IMAGEN */

    .acerca-img{

        width: 100%;
    }

    .acerca-img img{

        width: 100%;

        height: 420px;
    }

    .acerca-img h3{

        font-size: 20px;

        padding: 10px 18px;
    }

    /* CONTENIDO */

    .acerca-contenido{

        max-width: 100%;

        text-align: center;

        align-items: center;
    }

    .acerca-contenido h2{

        font-size: 28px;

        line-height: 1.3;
    }

    .acerca-contenido p{

        font-size: 16px;

        line-height: 1.7;
    }

    .acerca-contenido a{

        width: 100%;

        text-align: center;
    }
}

/* =========================
   MOBILE PEQUEÑO
========================= */

@media(max-width: 480px){

    .container-principal{

        padding: 20px;

        border-radius: 24px;
    }

    .acerca-img img{

        height: 340px;
    }

    .acerca-img h3{

        font-size: 18px;

        bottom: 15px;

        left: 15px;
    }

    .acerca-contenido h2{

        font-size: 24px;
    }

    .acerca-contenido p{

        font-size: 15px;
    }

    .acerca-contenido a{

        padding: 14px 22px;

        font-size: 14px;
    }
}